import java.util.*; public class BMICalculator { public static void main(String[] args) { Scanner console = new Scanner(System.in); System.out.println("This program reads in data for two people and"); System.out.println("computes their body mass index (BMI)"); System.out.println(); System.out.println("Enter next person's information"); System.out.print("Enter height (in inches): "); double height = console.nextDouble(); System.out.print("Enter weight (in pounds): "); double weight = console.nextDouble(); System.out.println(); } }